翻訳と辞書
Words near each other
・ Stacie Chan
・ Stacie Curtis
・ Stacie Foster
・ Stacie Laughton
・ Stacie Lynn Renna
・ Stacie Mistysyn
・ Stacie Orrico
・ Stacie Orrico (album)
・ Stacie Orrico discography
・ Stacie Passon
・ Stacie Powell
・ Stacie Randall
・ Stacja Wieżyca
・ Stack
・ Stack (abstract data type)
Stack (C++)
・ Stack (geology)
・ Stack (mathematics)
・ Stack (surname)
・ Stack (unit)
・ Stack Attack
・ Stack Barn
・ Stack Bay
・ Stack buffer overflow
・ Stack cake
・ Stack effect
・ Stack Exchange
・ Stack Harbor
・ Stack interchange
・ Stack Is the New Black


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Stack (C++) : ウィキペディア英語版
Stack (C++)
A stack is a standard C++ container adapter, designed to be used in a LIFO context,〔(【引用サイトリンク】url=http://www.cplusplus.com/reference/stack/stack/ )〕 and is implemented with an interface/wrapper to the type passed to it as a template argument, which defaults to a deque. It is so simple, that it can be described just by a sample interface:

template >
class std::stack
size_type size() const
value_type& top() const
const value_type& top() const
void push(const value_type& n)
void pop()
};


==Overview of Functions==


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Stack (C++)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.